home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 002a / ilaord.zip / OHARE.EZC < prev    next >
Text File  |  1991-06-18  |  5KB  |  175 lines

  1. EZC.DAT
  2. '=======
  3. report
  4. 'report file is EZC.RPT
  5. 'set maximum limit to size of file created
  6. filesize, 60000 
  7.          
  8. NORTH, 17242.7580                                               
  9. EAST,  16579.6794
  10.                                              
  11. UNITS, NM                                                     
  12. RANGE, 50                                                    
  13. FREQ, 122.10                                                   
  14. MSG1, "CHICAGO Flight Watch... Frequencies for O'hare International:  ATIS..135.15, TOWER (Departures)...121.75, (Approach)...119.00,",
  15. MSG2, " VOR...113.90, ILS Frequencies: Rnwy 04L...111.30, 04R...110.10, 09L...110.50,",
  16. MSG3, " 14L...110.90, 14R...109.70, 27R...111.10 32L...109.10, 32R...110.70",
  17. COM                                                             
  18.      
  19. UNITS, FS                                                     
  20. RANGE, 11                                                     
  21. FREQ, 121.75                                                   
  22. MSG1, "Ohare Ground... November Four Zero Eight One Lima... ",
  23. MSG2, "You Are Cleared To Taxi To Runway 14R ... Immediate Takeoff",
  24. MSG3, "Approved When Runway Clear Of Traffic",
  25. COM                                                             
  26.  
  27. UNITS, NM                                                     
  28. RANGE, 50                                                     
  29. FREQ, 119.00                                                   
  30. MSG1, "Ohare Approach Control ... November Four Zero Eight One Lima... ",
  31. MSG2, "Descend And Maintain Five Thousand... Proceed to OBK VOR (113.0)", MSG3, "... At OBK Contact Approach on 119.05 ... Landing Will Be On 14L (ILS Freq 110.9) ... Watch For Traffic In Your Vicinity",
  32. COM
  33.                                                              
  34. NORTH, 17346.2003
  35. EAST,  16558.9978
  36.  
  37. UNITS, NM                                                     
  38. RANGE, 5                                                     
  39. FREQ, 119.05                                               
  40. MSG1, "Ohare Approach Control ... November Four Zero Eight One Lima... ",
  41. MSG2, "Turn To Heading Two One Niner To intercept Glideslope For Runway 14L
  42.  ...",
  43. MSG3, " At Interception You Are Cleared for Final Approach ... Watch For Inbound Traffic And Maintain Distance",
  44. COM
  45.  
  46. 'RUNWAY EDGE LIGHTING --WHITE----------
  47. color,6,15,15                
  48. 'no lights @ daytime 
  49. dayoff                   
  50. 'adjust light spacing
  51. dots,360                
  52. find,color,15
  53. taxi         
  54.  
  55. 'RUNWAY EDGE LIGHTING -YELLOW---------
  56. color,6,9,9                
  57. 'no lights @ daytime 
  58. dayoff                   
  59. 'adjust light spacing
  60. dots,360                 
  61. find,color,9
  62. taxi         
  63.     
  64. 'RUNWAY APPROACH LIGHTING MODIFY MALSR WITH RED LIGHTS----
  65. LIGHTS            
  66. LIGHTCOLOR, 12    
  67. DOTS,10           
  68. FIND, COLOR, 12   
  69. COLOR, 12, 12, 12 
  70. taxi              
  71. 'TAXIWAYS---------------------
  72. 'royal blue for day dusk and night lights
  73. color,10,6,6                
  74. 'show them within 1 NM
  75. UNITS,NM
  76. range,3
  77. 'no lights @ daytime
  78. dayoff                     
  79. 'adjust light spacing
  80. dots,300  
  81. 'convert all royal blue lines to lights
  82. find, color, 6
  83. taxi        
  84.  
  85. 'LINES --------------------------
  86. lights
  87. dots,600
  88. lightcolor,4
  89. UNITS,NM
  90. range,1
  91. 'all other lines have lights at night
  92. find,all                  
  93. lines
  94.  
  95. 'ADJUST COLOR MAP -----------------
  96. '(perhaps better choices than default)    
  97. map, 2, 2, 0             
  98. map, 6, 2, 0
  99. map, 1, 0, 0
  100. map, 0, 0, 0
  101. map,10, 0, 0
  102.  
  103. 'POLYGON EFFECTS
  104. 'add dusk and night colors to all polys
  105. UNITS,NM
  106. range,5
  107. find,all          
  108. polys
  109.  
  110. 'RUNWAY EFFECTS ----------------------
  111. 'add dusk/night colors to all runways
  112. find,all
  113. runways                  
  114.  
  115. 'RIVER EFFECTS ------------------------
  116. 'add dusk and night colors to all rivers
  117. find,all
  118. rivers
  119.  
  120. 'ROAD EFFECTS -------------------------
  121. 'add dusk colors to all roads; lights at night
  122. UNITS,NM
  123. range,1
  124. find,all
  125. lightcolor,4
  126. dots,1700
  127. lights
  128. roads
  129.  
  130. 'HAZARD LIGHTS --------------------------
  131. 'add hazard lights to tall buildings
  132. find,height,200
  133. hazard
  134.  
  135. 'BUILDING EFFECTS -----------------------
  136. 'buildings having only drab colors will be ignored to save
  137. 'memory (grays, khaki, gold and black [black is default])
  138. 'filter,5
  139. filter,8
  140. filter,13
  141. map, 5, 5, 5
  142. map, 0, 7, 7 
  143. 'add dusk/night colors to all buildings
  144. UNITS,NM
  145. range,1
  146. find,all
  147. buildings
  148.  
  149. save                     
  150. end
  151.  
  152. Copyright 1991 Laemming Wheeler
  153.  
  154. REFERENCE:
  155.  
  156. color         code
  157. .....         ....
  158. Black          0   
  159. Dark Green     1   
  160. Dark blue      2   
  161. Light blue     3   
  162. Orange         4  
  163. Light Grey     5
  164. Royal blue     6  
  165. Sky blue       7  
  166. Khaki          8  
  167. Yellow         9   
  168. Dark Grey     10  
  169. Light Green   11   
  170. Red           12   
  171. Gold          13   
  172. White*        14 
  173. White         15  
  174.  
  175.